home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 August / MW 8 2003 CD1.iso / Inside Macworld / Product News / gimp-1.2.4.sit / gimp-1.2.4 / help / C / file / Makefile.am < prev    next >
Encoding:
Makefile  |  2001-11-29  |  754 b   |  30 lines

  1. ## Process this file with automake to produce Makefile.in
  2.  
  3. helpdatadir = $(gimpdatadir)/help/C/file
  4.  
  5. helpdata_DATA = \
  6.         close.html        \
  7.         index.html        \
  8.         last_opened.html    \
  9.         quit.html        \
  10.     revert.html
  11.  
  12. EXTRA_DIST = $(helpdata_DATA)
  13.  
  14. .PHONY: files install-data-hook
  15.  
  16. files:
  17.     @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
  18.       echo $$p; \
  19.     done
  20.  
  21. install-data-hook:
  22.     rm -f $(DESTDIR)$(helpdatadir)/dialogs
  23.     $(LN_S) ../dialogs $(DESTDIR)$(helpdatadir)/dialogs
  24.     rm -f $(DESTDIR)$(helpdatadir)/filters
  25.     $(LN_S) ../filters $(DESTDIR)$(helpdatadir)/filters
  26.     rm -f $(DESTDIR)$(helpdatadir)/open
  27.     $(LN_S) ../open $(DESTDIR)$(helpdatadir)/open
  28.     rm -f $(DESTDIR)$(helpdatadir)/save
  29.     $(LN_S) ../save $(DESTDIR)$(helpdatadir)/save
  30.